Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/

assets /cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/assets/
8 Items
  • 1.png
  • 2.png
  • 3.png
  • 4.png
  • 5.png
  • 6.png
  • dice-roll.gif
  • dice.png
  • font /cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/font/
    1 Items
  • sans.ttf
  • index.html /cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/index.html
    393 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    script.js /cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/script.js
    144 Views
    0 Comments
    function shuffle(){
    const img = document.getElementById("img");
    let random = Math.floor(Math.random() * 6) + 1;
    img.
    style.css /cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/style.css
    140 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;

    font-family: "sans";
    user-select: none;
    }